home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 1.iso / dist / fw_bind9.idb / var / named / named.conf.z / named.conf
Text File  |  2002-07-08  |  1KB  |  45 lines

  1. /*
  2.  This is a CHROOTED BIND 9 configuration file that can be used
  3.  as a local caching nameserver.  
  4.  
  5.  *** NOTE: *** 
  6.  
  7.  As configured, this server is only listening on localhost
  8.  (127.0.0.1.)  To allow other hosts to use this server,
  9.  comment out the listen-on directive below.
  10.  
  11. */
  12.  
  13. logging {
  14.         category lame-servers { null; };
  15.     category default { default_syslog; };
  16. };
  17.  
  18. options {
  19. // Specially configure the directory and pid-file
  20. // because the service is running chroot'd.
  21. // NOTE: named must be started with proper
  22. // -t and -c options for this to work properly, and
  23. // the -u (user) argument is also strongly suggested.
  24. //
  25.         directory "/";  
  26.     pid-file "named.pid";
  27.  
  28. // Comment out this block if you want to allow other hosts
  29. // to use this server.  Also see the bind documentation
  30. // on ways to restrict access to specific hosts or for
  31. // specific zones.
  32.     listen-on { 127.0.0.1; };
  33. };
  34.  
  35. zone "." { 
  36.     type hint; 
  37.     file "root.cache"; 
  38. };
  39.  
  40. zone "0.0.127.in-addr.arpa" in {
  41.         type master;
  42.         notify no;
  43.         file "127.rev";
  44. };
  45.